home *** CD-ROM | disk | FTP | other *** search
/ FishMarket 1.0 / FishMarket v1.0.iso / fishies / 051-075 / disk_061 / microemacs / makefile.orig < prev    next >
Makefile  |  1992-05-06  |  601b  |  19 lines

  1. CFLAGS=        -O
  2.  
  3. OFILES=        ansi.o basic.o bind.o buffer.o display.o file.o \
  4.         fileio.o hp150.o line.o lock.c main.o random.o region.o \
  5.         search.o spawn.o tcap.o termio.o vt52.o window.o word.o \
  6.         exec.o eval.o isearch.o input.o
  7.  
  8. CFILES=        ansi.c basic.c bind.c buffer.c display.c  file.c \
  9.         fileio.c hp150.c line.c lock.c main.c random.c region.c \
  10.         search.c spawn.c tcap.c termio.c vt52.c window.c word.c \
  11.         exec.c eval.c isearch.c input.c
  12.  
  13. HFILES=        estruct.h edef.h efunc.h epath.h ebind.h evar.h esearch.h
  14.  
  15. emacs:        $(OFILES)
  16.         $(CC) $(CFLAGS) $(OFILES) -ltermcap -lc -o emacs
  17.  
  18. $(OFILES):    $(HFILES)
  19.